/*===================================================
    Blog
====================================================*/
.blog-section{
    position: relative;
}
.grid-post{ margin: -15px; }
.post-card{
    background-color: #fff;
    border: 1px solid #eee;
    /*box-shadow: 0 1px 3px rgb(0 0 0 / 10%);*/
}
.post-card .post-thumb{ position: relative; }
.post-content-wrap{
    padding: 30px;
}
.post-meta{ margin-bottom: 10px; }
.post-meta li{
    font-family: "Work Sans",sans-serif;
    font-size: 12px;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    color: #7a7a7a;
    display: inline-flex;
    align-items: center;
}
.post-meta li:not(:last-of-type){ margin-right: 10px; }
.post-meta li i{
    color: #5fbd74;
    font-size: 15px;
    margin-right: 5px;
}
.post-card .post-content{}
.post-card .post-content h3{
    font-family: "Jost",sans-serif;
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    color: #333;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
    text-transform: capitalize;
}
.post-card .post-content h3:hover{
    text-decoration: underline;
}
.post-card .post-content h3 a{ color: #333; }
.post-card .post-content .read-more{
    font-family: "Work Sans",sans-serif;
    font-size: 12px;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    color: #7a7a7a;
    position: relative;
    padding-left: 30px;
}
.post-card .post-content .read-more:before{
    background-color: #5fbd74;
    position: absolute;
    content: "";
    width: 20px;
    height: 4px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.post-card .post-content .read-more:hover{
    color: #5fbd74;
}


/*Classic Post*/
.classic-post{}
.classic-post .post-card .post-thumb{
    min-height: 350px;
}
.classic-post .post-card .post-thumb img{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
    object-position: center;
}
.classic-post .post-card:not(:last-of-type){ margin-bottom: 30px; }

/*Post Category*/
.post-category{
    background-color: #5fbd74;
    position: absolute;
    left: 0;
    bottom: 0;
    font-family: "Work Sans",sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    height: 30px;
    line-height: 30px;
    padding: 0 20px;
    cursor: pointer;
}
.post-category:hover{
    color: #fff;
}

/*Post Details*/
.post-details{}
.post-details .post-thumb{
    min-height: 350px;
    position: relative;
    margin-bottom: 40px;
}
.post-details .post-thumb img{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
    object-position: center;
}
.post-details p{
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 40px;
}
blockquote{
    background-color: #fff;
    padding: 40px;
    border: 1px solid #eee;
    border-left: 3px solid #5fbd74;
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    color: #333;
    display: block;
    margin: 0;
    margin-bottom: 40px;
}
blockquote i.fas{
    color: #5fbd74;
    display: block;
    margin-bottom: 20px;
}
blockquote span{
    font-family: "Work Sans",sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: #7a7a7a;
    display: block;
    margin-top: 10px;
}
.post-details-gallery{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 10px;
    margin: 40px 0;
}
.post-details .tags li a{
    background-color: #fff;
    border: 1px solid #eee;
    margin: 0;
}

/*Post Navigation*/
.post-navigation{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 50px;
    align-items: center;
    margin: 40px 0;
}
.post-navigation li{}
.post-navigation li:last-child{
    text-align: right;
}
.post-navigation li a{
    font-size: 20px;
    font-family: "Jost",sans-serif;
    line-height: 28px;
    font-weight: 600;
    color: #333;
    letter-spacing: -0.5px;
    
}
.post-navigation li a:hover{
    text-decoration: underline;
}
.post-navigation li a:hover > span{
    text-decoration: none;
}
.post-navigation li a span{
    font-family: "Work Sans",sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #a5a6aa;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
    text-decoration: none;
}
.post-navigation li a span i{
    color: #a5a6aa;
    margin-right: 5px;
}
.post-navigation li:last-child  a span i{
    margin-left: 5px; 
    margin-right: auto;
}

/*Auhtor Box*/
.author-box{
    background-color: #fff;
    padding: 40px;
    border: 1px solid #eee;
    display: grid;
    align-items: center;
    grid-template-columns: 80px 1fr;
    grid-column-gap: 20px;
    line-height: 1;
    margin-bottom: 40px;
}
.author-info{}
.social-icon{}
.social-icon li{
    display: inline-block;
}
.social-icon li a:hover{ color: #5fbd74; }
.social-icon li:not(:last-of-type){margin-right: 10px;}


/*Comments*/
.comments-box{ margin-bottom: 40px; }
.comment-title{
    font-weight: 600;
    color: #333;
    display: inline-block;
    padding-bottom: 10px;
    position: relative;
    margin-bottom: 30px;
    line-height: 1;
}
.comment-title:before {
    background-color: #5fbd74;
    width: 50%;
    height: 4px;
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
}
.comments-box .comment-inner{
    display: grid;
    grid-template-columns: 60px 1fr;
    grid-column-gap: 20px;
}
.comments-box .comment{ margin-bottom: 40px; }
.comments-box .children{
    margin-left: 50px;
    margin-top: 40px;
}
.comments-box .comment-thumb img{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-top: 5px;
}
.comment-wrap{}
.comments-meta{}
.comments-meta h4{
    font-size: 20px;
    font-weight: 500;
    display: block;
}
.comments-meta h4 span{
    font-family: "Work Sans",sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #7a7a7a;
    display: block;
}
.comment-area{}
.comment-area p{
    font-size: 17px;
    line-height: 27px;
    margin-bottom: 10px;
}
.comment-area .reply{
    font-family: "Work Sans",sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #7a7a7a;
}
/*Comment Form*/
.comment-form{ margin-top: -15px; }
.comment-form .form-control{
    background-color: #fff;
    height: 50px;
    border-radius: 0;
    border: 1px solid #eee;
    box-shadow: none;
    outline: none;
}
.comment-form .form-control.comment{
    height: 150px;
}
#form-messages {
    display: none;
    margin-top: 15px;
    margin-bottom: 0;
}
#form-messages.alert-danger,
#form-messages.alert-success{
    display: block;
}

/*Sidebar Widget*/
.sidebar-widget{
    background-color: #fff;
    border: 1px solid #eee;
    padding: 30px;
    
}
.sidebar-widget:not(:first-of-type){ margin: 30px 0; }
/*Search*/
.sidebar-widget .search-form { position: relative; }
.sidebar-widget .search-form .form-control {
    background-color: #fff;
    border-radius: 2px;
    box-shadow: none;
    outline: none;
    height: 50px;
    border: 1px solid #eee;
    padding-right: 40px;
}
.sidebar-widget .search-form .search-btn{
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    height: 100%;
    font-size: 15px;
    color: #7a7a7a;
}

/*Widget Title*/
.widget-title{
    display: block;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}
.widget-title h3{
    font-weight: 600;
    color: #333;
    display: inline-block;
    padding-bottom: 10px;
    position: relative;
    margin: 0;
    line-height: 1;
}
.widget-title h3:before{
    background-color: #5fbd74;
    width: 50%;
    height: 4px;
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
}

/*Category List*/
.category-list{}
.category-list li{
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}
.category-list li:not(:last-of-type){
    margin-bottom: 10px;
}
.category-list li a{
    color: #7a7a7a;
}
.category-list li a:hover{
    color: #333;
    text-decoration: underline;
}
.category-list li span{
    border: 1px solid #eee;
    font-size: 14px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
}
.category-list li:hover span{
    background-color: #5fbd74;
    color: #fff;
    transition: all 0.3s ease;
}

/*Thumb Posts*/
.thumb-post{}
.thumb-post li{
    display: inline-flex;
    align-items: flex-start;
    justify-content: space-between;
}
.thumb-post li:not(:last-of-type){
    margin-bottom: 20px;
}
.thumb-post li .thumb{
    flex-shrink: 0;
    width: 80px;
    height: 70px;
    margin: 0 15px 0 0;
    position: relative;
    display: inline-block;
    vertical-align: top;
    max-width: 100%;
    overflow: hidden;
}
.thumb-post .thumb-post-info{
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
}
.thumb-post .thumb-post-info h3{
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
}
.thumb-post .thumb-post-info h3 a{ color: #333; }
.thumb-post .thumb-post-info h3 a:hover{
    text-decoration: underline;
}
.thumb-post .thumb-post-info .date{
    font-weight: 600;
    font-size: 12px;
    font-family: "Work Sans",sans-serif;
    text-transform: uppercase;
    color: #7a7a7a;
    display: flex;
    align-items: center;
    line-height: 1;
}
.thumb-post .thumb-post-info .date i{
    color: #5fbd74;
    margin-right: 5px;
}

/*Tags*/
.tags{}
.tags li{
    display: inline-block;
}
.tags li a{
    background-color: #eee;
    display: inline-block;
    font-family: "Jost",sans-serif;
    text-transform: capitalize;
    font-size: 14px;
    color: #7a7a7a;
    padding: 3px 15px;
    margin: 0 3px 10px 0;
}
.tags li a:hover{
    background-color: #5fbd74;
    color: #fff;
}

/*Pagination*/
.pagination-wrap li{
    display: inline-block;
    margin: 0 10px 0 0;
}
.pagination-wrap li a{
    background-color: #fff;
    border: 1px solid #eee;
    color: #7a7a7a;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    display: inline-block;
    cursor: pointer;
}
.pagination-wrap li a:hover,
.pagination-wrap li a.active{
    background-color: #5fbd74;
    border: 1px solid #5fbd74;
    color: #fff;
}

/*max-width 1024px*/
@media (max-width: 1024px) {}

/*max-width 992px*/
@media (max-width: 992px) {
    .padding{ padding: 50px 0; }
    .sm-padding{ padding: 15px; }
    p br{ display: none; }
    span br{ display: none; }
    .default-btn{ padding: 0 30px; }
    
    .post-card .post-content h3{
        font-size: 20px;
        line-height: 26px;
    }
}

/*max-width 768px*/
@media all and (max-width: 768px) {
    .padding{ padding: 50px 0; }
    .xs-padding{ padding: 15px; }
    p br{ display: none; }
}

/*max-width 580px*/
@media all and (max-width: 580px) {
    .grid-post{ margin: 0; }
    .post-navigation{
        grid-column-gap: 15px;
    }
    .author-box{
        grid-template-columns: 1fr;
        grid-row-gap: 20px;
    }
    #scrollup {
        bottom: 20px;
        right: 20px;
    }
}

/*max-width 420px*/
@media all and (max-width: 420px) {}

/*max-width 320px*/
@media (max-width: 320px) {}


